ShopCartServicesProviderThe ShopCartServicesProvider section of the web.config file allows you to assign a shop cart services provider for your KommerceServer system. This is used during checkout to allow further processing beyond standard functionality in KommerceServer. You can only select one provider to use for each store website by setting the default attribute for the element. Nested within this element are the available providers supported and further described below.
Example Usage<ShopCartServicesProvider default="SumAndReprice"> <providers> <clear /> <add name="SumAndReprice" type="Koretech.Framework.Ecommerce.Providers.ShopCartServicesProvider.KommerceServerShopCartServicesProvider, Koretech.KommerceServer" /> <add name="WebServices" type="Koretech.KommerceServer.Providers.WebServiceShopCartServicesProvider, Koretech.KommerceServer" /> </providers> </ShopCartServicesProvider> |